home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000465_news@columbia.edu _Thu Aug 17 11:12:56 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from watsun.cc.columbia.edu (watsun.cc.columbia.edu [128.59.39.2])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id LAA18838
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Thu, 17 Aug 2000 11:12:56 -0400 (EDT)
  5. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  6.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA19278
  7.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 17 Aug 2000 11:12:55 -0400 (EDT)
  8. Received: (from news@localhost)
  9.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id KAA17725
  10.     for kermit.misc@watsun.cc.columbia.edu; Thu, 17 Aug 2000 10:48:53 -0400 (EDT)
  11. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  12. From: rnglauz@ucdavis.edu
  13. Subject: Re: Kermit using PDQ Comm
  14. Date: Thu, 17 Aug 2000 06:50:44 -0800
  15. Organization: University of California, Davis
  16. Message-ID: <rnglauz-1708000650440001@news.ucdavis.edu>
  17. To: kermit.misc@columbia.edu
  18.  
  19. PDQ Comm works to send a character string (output=string) and the server
  20. receives the string okay.  What is the format of a string to send
  21. instructions to DOS?  Bob.
  22.  
  23.  
  24. In article <8n9el7$g9s$1@newsmaster.cc.columbia.edu>,
  25. fdc@watsun.cc.columbia.edu (Frank da Cruz) wrote:
  26.  
  27. > In article <rnglauz-1408001025550001@news.ucdavis.edu>,
  28. >  <rnglauz@ucdavis.edu> wrote:
  29. > : We have managed to transmit a file using PDQ Comm with the Kermit protocol
  30. > : to our server.  The server is running Kermit 3.0 on a 386 at 9600 baud -
  31. > : this will stay the same as it is used to receive files from the HP48.  
  32. > : 
  33. > : Now we would like to send a DOS command to tell the server to make a copy
  34. > : of the file on a:  (example:  copy pb002e a:)  
  35. > : 
  36. > : Please advise any suggestions.  One alternative is to transmit the file
  37. > : twice but this seems like an inefficient method compared with executing a
  38. > : DOS command
  39. > : 
  40. > MS-DOS Kermit 3.0 and later (and you have 3.0; the current version is 3.15)
  41. > is capable of running in server mode, and accepting commands from the client.
  42. > However, I doubt that PDQ Comm knows how to send client commands to a Kermit
  43. > server.
  44. > If you were using MS-DOS Kermit or Kermit 95 on the client, you would use
  45. > a sequence like this:
  46. >   send pb002e
  47. >   if fail stop 1 Upload failed.
  48. >   remote host copy pb002e a:
  49. >   if fail stop 1 Copy failed.
  50. > See the Kermit Project website for current Kermit software releases:
  51. >   http://www.columbia.edu/kermit/
  52. > - Frank